obj1 > obj2

Bigger-than operator. Returns true if object obj1 is bigger than object obj2.
If the compared objects are strings, the function uses the lexicographical order implemented by the java language.


Example


3 > 4

false

"a">"z"

false